body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
h2 {
  text-align: center;
  font-size: 40px;
  color: rgb(90, 46, 46);
  text-shadow: 2.5px 2.5px rgba(0, 0, 0, 0.5);
}
.abstand {
  margin: 70px;
}
.header-image {
  height: 20vh;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.logo-image {
  position: absolute;
  left: 50px;
  top: 20px;
  height: 130px;
  width: auto;
}
.container {
  position: absolute;
  right: 50px;
  top: 60px;
  font-size: 30px;
  display: flex;
  align-items: center;
}
.menu-link {
  color: white;
  text-decoration: none;
  margin-left: 50px;
}
.link {
  color: rgb(90, 46, 46);
  text-decoration: underline;
}
.menu-link:hover {
  text-decoration: underline;
}
.headline {
  top: 120px;
  text-align: center;
  color: white;
  font-size: 65px;
  text-shadow: 5px 5px rgba(0, 0, 0, 0.5);
}
.brown {
  color: rgb(90, 46, 46);
}
.text-rahmen {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgb(90, 46, 46);
  border-radius: 20px;
  background-color: #fff7e6;
  padding: 20px 30px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.rahmen-bild {
  height: 100px;
  width: auto;
}

.rahmen-text {
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  text-align: center;
  flex: 1;
}
.rahmen-text a:hover {
  color: rgb(90, 46, 46);
  text-decoration: underline;
}
.icon-link img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-link:hover img {
  transform: scale(1.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
  .text-rahmen {
    flex-direction: column;
  }
  .rahmen-bild {
    height: 70px;
    margin: 10px 0;
  }
  .rahmen-text {
    padding: 10px;
  }
}

@media (max-width: 1300px) {
  .headline {
    font-size: 55px;
  }
  .header-container {
    height: 90vh;
  }
}

/* bei ≤ 1000px */
@media (max-width: 1000px) {
  .headline {
    font-size: 45px;
  }
    .header-container {
    height: 80vh;
  }
}

/* bei ≤ 900px */
@media (max-width: 900px) {
  .headline {
    font-size: 45px;
  }
  .header-container {
    height: 70vh;
  }
}

/* bei ≤ 800px */
@media (max-width: 800px) {
  .headline {
    font-size: 35px;
  }
  .header-container {
    height: 60vh;
  }
}
.container-bottom {
  width: 100%;
  align-items: center;
  justify-content: space-between;
  font-size: 40px;
  display: flex;
}
.bottom-link {
  color: white;
  text-decoration: none;
}

.my-form * {
  box-sizing: border-box;
  font-family: sans-serif;
}

.my-form {
  max-width: 500px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.my-form label {
  display: block;
  padding: 1.2rem 0 0.2rem 0;
  font-weight: 700;
  font-size: 1rem;
  color: #374151;
}

.my-form input, .my-form textarea {
  display: block;
  width: 100%;
  font-size: 1rem;
  padding: 0.7rem;
  background-color: #fff7e6;
  border: 4px solid rgb(90, 46, 46);
  outline: none;
  border-radius: 0.5rem;
  color: #000;
  transition: 300ms border;
}

.my-form textarea {
  resize: none;
}

.my-form input:focus, .my-form textarea:focus {
  background-color: #fff;
  border-color: #E74694;
}

.my-form input:focus:required:invalid {
  background-color: #fff;
  border-color: #E74694;
}

.my-form .btns-row {
  margin-top: 1rem;
  text-align: right;
  margin-bottom: 2rem;
}

.my-form button {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 0.5rem;
  border-color: transparent;
  background-color: rgb(90, 46, 46);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  transition: 300ms background;
  cursor: pointer;
}

.my-form button:hover {
  background-color: #3B82F6;
}

